home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-10-14 | 557 b | 23 lines | [TEXT/CWIE] |
- // WindowAccessor.h, the WindowAccessor class, to be used for direct access to
- // window pixel-maps.
-
- // copyright © 1995, Macneil Shonle. All rights reserved.
-
- #ifndef __WINDOWACCESSOR__
- #define __WINDOWACCESSOR__
-
- #ifndef __VIDEOACCESSOR__
- #include <VideoAccessor.h>
- #endif
-
- // class WindowAccessor
- class WindowAccessor : public VideoAccessor {
- public:
- WindowAccessor(WindowRef) throw(xalloc);
- virtual ~WindowAccessor();
-
- WindowAccessor& operator=(const WindowAccessor&) throw(xalloc);
- WindowAccessor& operator=(WindowRef) throw(xalloc);
- };
-
- #endif